From cd93eaf1c745c7d60693a744aab3d7c79a035c64 Mon Sep 17 00:00:00 2001 From: "kaf24@localhost.localdomain" Date: Sat, 19 Aug 2006 12:06:36 +0100 Subject: [PATCH] [HVM] Fix SMBIOS entry point copy destination. Spotted by Xiaowei Yang Signed-off-by: Keir Fraser --- tools/firmware/rombios/rombios.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/firmware/rombios/rombios.c b/tools/firmware/rombios/rombios.c index 3fb71a6f36..b9c9d78938 100644 --- a/tools/firmware/rombios/rombios.c +++ b/tools/firmware/rombios/rombios.c @@ -9459,7 +9459,7 @@ smbios_init: mov cx, #0x001f ; 0x1f bytes to copy mov ax, #0xf000 mov es, ax ; destination segment is 0xf0000 - mov di, smbios_entry_point ; destination offset + mov di, #smbios_entry_point ; destination offset mov ax, #0x9f00 mov ds, ax ; source segment is 0x9f000 mov si, #0x0000 ; source offset is 0 -- 2.30.2